home *** CD-ROM | disk | FTP | other *** search
/ Minami 58 / MINAMI58.ISO / Varios / Juegos Flash / Gold Yard.exe / scripts / DefineButton2_305 / BUTTONCONDACTION on(keyPress Space).as
Text File  |  2003-04-29  |  822b  |  28 lines

  1. on(keyPress "<Space>"){
  2.    if(25 < activeslot)
  3.    {
  4.       call("clearslot");
  5.       _root.library.heal(healing_potion);
  6.    }
  7.    else if(0 < activeslot and activeslot < 26)
  8.    {
  9.       celltype = cellcontent.substr(1,1);
  10.       targetid = int(cellcontent.substr(3,2));
  11.       if(celltype == 5 and activeslot == targetid and eval("targetstatus" add targetid) == 1)
  12.       {
  13.          set("targetstatus" add targetid,0);
  14.          call("clearslot");
  15.          tellTarget("/target" add targetid)
  16.          {
  17.             gotoAndStop("on");
  18.             play();
  19.          }
  20.       }
  21.       else if(celltype == 5 and activeslot != targetid and eval("targetstatus" add targetid) == 1)
  22.       {
  23.          _root.errorfx.gotoAndPlay("on");
  24.          _root.infomessage("That doesn\'t seem to work here...");
  25.       }
  26.    }
  27. }
  28.